home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / GETCH.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  167 b   |  8 lines

  1. /* getch.c --- p 514 */
  2. #include <stdio.h>
  3. #include <conio.h>
  4. main()
  5. {
  6.     printf("Hit any character to exit:");
  7.     getch();              /* Ignore character being read */
  8. }